home *** CD-ROM | disk | FTP | other *** search
- unit uTCPIntf;
- //------------------------------------------------------------------------------
- // Last updated: 11/06/03
- // Author: Dennis Passmore
- // Company: Ultimate Software, Inc.
- // Contact info: dennis_passmore@ultimatesoftware.com
- //
- // Compatibility: Delphi for .NET TCP service demo
- //
- // Description: ServiceInstaller for TmpService application
- //
- //------------------------------------------------------------------------------
- interface
-
- type
- ITCPService = interface
- function SayHello(const fItem: string; out aResult: string): boolean;
- end;
-
- implementation
-
- end.
-